Helpful Information
 
 
Category: PHP contact form
PHP contact form -> comma separated text file

Is it posssible to have a php create a text file and output the values from a contact form to it? If so, how simply :confused:

That's possible and not quite hard. You need to get the data sent through the contact form, validate it, and upon successful validation you store them in the text file.

Have a look at form processing ($_POST, $_GET) and file writing, especially

fopen() - http://www.php.net/manual/en/function.fopen.php
fwrite() - http://www.php.net/manual/en/function.fwrite.php
fclose() - http://www.php.net/manual/en/function.fclose.php

There is lots of sample code in the maunal, particularly in the user notes to each function involved.










privacy (GDPR)